home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / xml / sax / Locator.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  283 b   |  12 lines

  1. package org.xml.sax;
  2.  
  3. public interface Locator {
  4.    String getPublicId();
  5.  
  6.    String getSystemId();
  7.  
  8.    int getLineNumber();
  9.  
  10.    int getColumnNumber();
  11. }
  12.